home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Speccy ClassiX 1998
/
Speccy ClassiX 98.iso
/
amiga_system
/
the_aminet
/
dev
/
gcc
/
ixemulsrc.lha
/
ixemul-41.4
/
gnulib
/
floatsisf.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-08-19
|
277b
|
19 lines
#include "common.h"
#ifdef IEEE_SINGBAS
#include <inline/mathieeesingbas.h>
#else
#include <inline/mathffp.h>
#include <inline/mathtrans.h>
#endif
SFVALUE
__floatsisf (a)
SItype a;
{
#ifdef IEEE_SINGBAS
return IEEESPFlt(a);
#else
return SPTieee( SPFlt( a));
#endif
}